apache2.2 到 2.4后配置文件需要更改的部分

  1. 访问控制

        2.2 的时候

1
2
Order deny,allow
Deny from all

        在 2.4 需要改成

1
Require all denied

        常用的配置有:

1
2
3
4
5
Require all denied
Require all granted
Require host xxx.com
Require ip 192.168.1 192.168.2
Require local
  1. RewriteLogLevel 变为:logLevel

        如,LogLevel warn rewrite: warn

  1. Namevirtualhost 被移除

  2. 网站压缩,除了使用mod_deflate,还要mod_filter

        使用ssl,除了使用mod_ssl,还需要mod_socache_shmcb